home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / editor / fkwin20.zip / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1996-06-15  |  750b  |  27 lines

  1. @REM PRINTDOC.BAT; JLS 06/96
  2. @echo off
  3. if "%1"=="" goto default
  4. set loc=%1
  5. goto next
  6. :default
  7. set loc=lpt1
  8. :next
  9. ECHO Docs for FontKat for Windows will now print...
  10. ECHO ...
  11. ECHO The files REGISTER.TXT, FKWIN20.TXT, and PRODUCTS.TXT will print
  12. ECHO to the printer %loc%.  Press any key to begin.
  13. ECHO .
  14. ECHO If you need to print to any other printer, press Ctrl-C now to stop
  15. ECHO this batch file, and restart PRINTDOC with a device name, like this:
  16. ECHO PRINTDOC LPT2
  17. ECHO or:
  18. ECHO PRINTDOC PRN
  19. ECHO .
  20. ECHO VENDINFO.DIZ contains sysop and vendor information, and may
  21. ECHO be examined with the READ_ME.BAT batch file provided.
  22. ECHO on
  23. @PAUSE
  24. type register.txt >%loc%
  25. type fkwin20.txt >>%loc%
  26. type products.txt >>%loc%
  27. @PAUSE